func github.com/klauspost/compress/flate.matchLen

14 uses

	github.com/klauspost/compress/flate (current package)
		deflate.go#L289: 				n := matchLen(win[i:i+minMatchLook], wPos)
		deflate.go#L323: 			n := matchLen(win[i:i+minMatchLook], wPos)
		deflate.go#L501: 						length := matchLen(d.window[prevIndex+checkOff:end], d.window[ch2+checkOff:])
		deflate.go#L541: 								length := matchLen(d.window[prevIndex+checkOff:end], d.window[ch2+checkOff:])
		fast_encoder.go#L155: 	return int32(matchLen(a, b))
		fast_encoder.go#L175: 	return int32(matchLen(src[s:], src[t:]))
		level3.go#L107: 				l1, l2 := matchLen(src[s+4:], src[s-offset+4:]), matchLen(src[s+4:], src[s-o2+4:])
		level4.go#L114: 					l1, l2 := matchLen(src[s+4:], src[t+4:]), matchLen(src[nextS+4:], src[nextS-lOff+4:])
		level5.go#L683: 	return int32(matchLen(src[s:s1], src[t:]))
		level5.go#L704: 	return int32(matchLen(src[s:], src[t:]))
		matchlen_generic.go#L14: func matchLen(a, b []byte) (n int) {
		stateless.go#L263: 			l := int16(matchLen(src[s+4:], src[t+4:]) + 4)